home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / clang / c_course.zip / INTIN.C < prev    next >
Text File  |  1989-12-30  |  384b  |  15 lines

  1. #include "stdio.h"
  2.  
  3. main()
  4. {
  5. int valin;
  6.  
  7.    printf("Input a number from 0 to 32767, stop with 100.\n");
  8.  
  9.    do {
  10.       scanf("%d",&valin);   /* read a single integer value in */
  11.       printf("The value is %d\n",valin);
  12.    } while (valin != 100);
  13.  
  14.    printf("End of program\n");
  15. }